-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathIDivisionOperators`3.xml
116 lines (116 loc) · 7.4 KB
/
IDivisionOperators`3.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<Type Name="IDivisionOperators<TSelf,TOther,TResult>" FullName="System.Numerics.IDivisionOperators<TSelf,TOther,TResult>">
<TypeSignature Language="C#" Value="public interface IDivisionOperators<TSelf,TOther,TResult> where TSelf : IDivisionOperators<TSelf,TOther,TResult>" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IDivisionOperators`3<(class System.Numerics.IDivisionOperators`3<!TSelf, !TOther, !TResult>) TSelf, TOther, TResult>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="DocId" Value="T:System.Numerics.IDivisionOperators`3" />
<TypeSignature Language="VB.NET" Value="Public Interface IDivisionOperators(Of TSelf, TOther, TResult)" />
<TypeSignature Language="F#" Value="type IDivisionOperators<'Self, 'Other, 'Result (requires 'Self :> IDivisionOperators<'Self, 'Other, 'Result>)> = interface" />
<TypeSignature Language="C++ CLI" Value="generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IDivisionOperators<TSelf, TOther, TResult>public interface class IDivisionOperators" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IDivisionOperators`3<(class System.Numerics.IDivisionOperators`3<!TSelf, !TOther, !TResult>) TSelf, TOther, TResult>" FrameworkAlternate="net-7.0" />
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeParameters>
<TypeParameter Name="TSelf">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
<Constraints>
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TOther,TResult></InterfaceName>
</Constraints>
</TypeParameter>
<TypeParameter Name="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
<TypeParameter Name="TResult">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Interfaces />
<Docs>
<typeparam name="TSelf">The type that implements this interface.</typeparam>
<typeparam name="TOther">The type that will divide <typeparamref name="TSelf" />.</typeparam>
<typeparam name="TResult">The type that contains the quotient of <typeparamref name="TSelf" /> and <typeparamref name="TOther" />.</typeparam>
<summary>Defines a mechanism for computing the quotient of two values.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="op_CheckedDivision">
<MemberSignature Language="C#" Value="public static virtual TResult op_CheckedDivision (TSelf left, TOther right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig specialname virtual !TResult op_CheckedDivision(!TSelf left, !TOther right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IDivisionOperators`3.op_CheckedDivision(`0,`1)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides op_CheckedDivision (left As TSelf, right As TOther) As TResult" />
<MemberSignature Language="F#" Value="static member op_CheckedDivision : 'Self * 'Other -> 'Result" Usage="System.Numerics.IDivisionOperators<'Self, 'Other, 'Result (requires 'Self :> System.Numerics.IDivisionOperators<'Self, 'Other, 'Result>)>.op_CheckedDivision (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TResult op_CheckedDivision(TSelf left, TOther right);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="TSelf" />
<Parameter Name="right" Type="TOther" />
</Parameters>
<Docs>
<param name="left">The value that <paramref name="right" /> divides.</param>
<param name="right">The value that divides <paramref name="left" />.</param>
<summary>Divides two values together to compute their quotient.</summary>
<returns>The quotient of <paramref name="left" /> divided by <paramref name="right" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">The quotient of <paramref name="left" /> divided by <paramref name="right" /> is not representable by <typeparamref name="TResult" />.</exception>
</Docs>
</Member>
<Member MemberName="op_Division">
<MemberSignature Language="C#" Value="public static abstract TResult operator / (TSelf left, TOther right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig specialname virtual !TResult op_Division(!TSelf left, !TOther right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IDivisionOperators`3.op_Division(`0,`1)" />
<MemberSignature Language="VB.NET" Value="Public Shared Operator / (left As TSelf, right As TOther) As TResult" />
<MemberSignature Language="F#" Value="static member ( / ) : 'Self * 'Other -> 'Result" Usage="left / right" />
<MemberSignature Language="C++ CLI" Value="public:
 static TResult operator /(TSelf left, TOther right);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="TSelf" />
<Parameter Name="right" Type="TOther" />
</Parameters>
<Docs>
<param name="left">The value that <paramref name="right" /> divides.</param>
<param name="right">The value that divides <paramref name="left" />.</param>
<summary>Divides one value by another to compute their quotient.</summary>
<returns>The quotient of <paramref name="left" /> divided by <paramref name="right" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>